Event Hubs (1 / 16): In a distributed temperature monitoring system, various sensors are sending data to an Event Hub. You need to guarantee that the temperature readings from all sensors are processed in the exact sequence they were sent. How can you achieve this?
Answer:
You should use a common partition key for all sensors. By using the same partition key, you ensure that the readings from different sensors are kept together in the same partition and processed in the order in which they arrived.